home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / High Level Languages / Turbo C v3.0 / Tc3setup.exe / EXAMPLES / INTRO14.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  389 b   |  22 lines

  1. // INTRO14.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.     int   your_number;
  8.     cout << "Enter a whole number: ";
  9.     cin >> your_number;
  10.  
  11.     if (your_number % 2 == 0)
  12.         cout << "\nYour number is even\n";
  13.  
  14.     if (your_number % 2 != 0) 
  15.         {
  16.         cout << "Your number is odd.\n";
  17.         }
  18. cout << "That's all!\n";
  19.  
  20. return 0;
  21. }
  22.